home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / pcw.zip / PCMAKE.BAT < prev    next >
DOS Batch File  |  1991-12-10  |  2KB  |  52 lines

  1. :************************************************************
  2. :* File Id.                  MAKEPCW.BAT                    *
  3. :* Date Written.             15 Oct. 90.                    *
  4. :*                                                          *
  5. :*           (c) Copyright 1990 by Stan Milam               *
  6. :*                                                          *
  7. :* Batch file to create small medium and large libraries for*
  8. :* PC Windows using Power C V2.0. Medium memory model is the*
  9. :* default.                                                 *
  10. :*                                                          *
  11. :* Calls:  PCPCW.BAT                                        *
  12. :*                                                          *
  13. :************************************************************
  14. @echo off
  15. cls
  16. if %1model == smodel goto small
  17. if %1model == Smodel goto small
  18. if %1model == lmodel goto large
  19. if %1model == Lmodel goto large
  20. :
  21. :***************************************************************
  22. :*                                                             *
  23. :*                            MEDIUM                           *
  24. :*                                                             *
  25. :***************************************************************
  26. :
  27. echo Building Medium Memory Model Library: ..\PCPCWMM.LIB
  28. command /c pcpcw mm
  29. goto end
  30. :
  31. :***************************************************************
  32. :*                                                             *
  33. :*                            SMALL                            *
  34. :*                                                             *
  35. :***************************************************************
  36. :
  37. :small
  38. echo Building Small Memory Model Library: ..\PCPCWMS.LIB
  39. command /c pcpcw ms
  40. goto end
  41. :
  42. :***************************************************************
  43. :*                                                             *
  44. :*                            LARGE                            *
  45. :*                                                             *
  46. :***************************************************************
  47. :large
  48. echo Building Large Memory Model Library: ..\PCPCWML.LIB
  49. command /c pcpcw ml
  50. :end
  51. Echo  
  52.